From: Richard M. Stallman Date: Sun, 7 Sep 1997 04:30:52 +0000 (+0000) Subject: (time-stamp-time-zone): Allow nil as alternative. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~79284 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=7967f8ab1eda00584378b22e89d822b323a2cf13;p=emacs.git (time-stamp-time-zone): Allow nil as alternative. --- diff --git a/lisp/time-stamp.el b/lisp/time-stamp.el index d8a279e0082..93c4f86af1d 100644 --- a/lisp/time-stamp.el +++ b/lisp/time-stamp.el @@ -113,7 +113,7 @@ If nil, no notification is given." (defcustom time-stamp-time-zone nil "If non-nil, a string naming the timezone to be used by \\[time-stamp]. Format is the same as that used by the environment variable TZ on your system." - :type 'string + :type '(choice (const nil) string) :group 'time-stamp)